home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- _X = _X - heroe.scrollspeed;
- if(this.hitTest(_root.shoot1) && !us)
- {
- _root.shoot1.impact = true;
- us = true;
- _root.escudo.start();
- shieldtimer = 3;
- _root.frebote._x = _root.shoot1._x;
- _root.frebote._y = _root.shoot1._y;
- _root.frebote.gotoAndPlay(2);
- }
- if(shieldtimer > 0)
- {
- shieldtimer--;
- if(shieldtimer <= 0)
- {
- us = false;
- _root.shoot1.impact = false;
- }
- }
- }
-